home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CPasswordText 1.0 / CPasswordText / CPasswordText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  476 b   |  29 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. #include <CDialogText.h>
  4.  
  5. class CPasswordText : public CDialogText
  6. {
  7.     public:
  8.     
  9.         void IPasswordText
  10.             ( CView *anEnclosure
  11.             , CView *aSupervisor
  12.             , short aWidth
  13.             , short aHeight
  14.             , short aHEncl
  15.             , short aVEncl
  16.             , SizingOption aHSizing
  17.             , SizingOption aVSizing
  18.             , short aLineWidth );
  19.  
  20.         virtual void IViewTemp
  21.             ( CView *anEnclosure
  22.             , CBureaucrat *aSupervisor
  23.             , Ptr viewData );
  24.             
  25.     protected:
  26.     
  27.         virtual void InstallTEHooks( void );
  28.  
  29. };